home *** CD-ROM | disk | FTP | other *** search
- class Object
- {
- var _proto__ // It refers to the prototype property of the constructor function that created myObject.
-
- function Object(value) // Constructor. It creates a new Object object.
- function addProperty(prop, getFunc, setFunc) // It creates a getter/setter property.
- function registerClass() // It associates a movie clip symbol with an ActionScript object class.
- function toString() // It converts the specified object to a string and returns it.
- function unwatch(prop) // It removes a watchpoint that Object.watch() created.
- function valueOf() // It returns the primitive value of the specified object.
- function watch(prop, callback, userData) // It registers an event handler to be invoked when a specified property of an ActionScript object changes.
- }
-